The transition from higher-order differential equations to first-order systems represents a profound shift in perspective. Instead of tracking a single variable’s acceleration, we evolve a state-space vector representing position, velocity, and higher derivatives simultaneously. Any $n$-th order linear equation can be decomposed into a coupled system of $n$ first-order equations, allowing us to deploy the full power of matrix algebra.
1. The Reduction of Order Method
To transform the $n$-th order scalar equation $y^{(n)} = F(t, y, y', \dots, y^{(n-1)})$, we define a set of auxiliary variables:
$$x_1 = y, x_2 = y', \dots, x_n = y^{(n-1)}$$
This substitution leads to the vector equation $\mathbf{x}' = \mathbf{f}(t, \mathbf{x})$. For a classical mechanical oscillator described by $$mu'' + \gamma u' + ku = F(t)$$, the transformation results in:
- $x_1' = x_2$
- $x_2' = -\frac{k}{m}x_1 - \frac{\gamma}{m}x_2 + \frac{1}{m}F(t)$
Example 1: Spring-Mass Transformation
The motion of a certain spring-mass system is described by the second-order differential equation $u'' + \frac{1}{8}u' + u = 0$. Rewrite this equation as a system of first-order equations.
Let $x_1 = u$ (position) and $x_2 = u'$ (velocity). Thus, $x_1' = x_2$.
Substituting into the ODE: $x_2' + \frac{1}{8}x_2 + x_1 = 0 \Rightarrow x_2' = -x_1 - \frac{1}{8}x_2$.
$$\mathbf{x}' = \begin{pmatrix} 0 & 1 \\ -1 & -1/8 \end{pmatrix} \mathbf{x}$$
2. Coupled Physical Systems
While the reduction of order is a mathematical convenience for single equations, systems of equations arise naturally in complex environments:
- Mechanical Systems: Multi-mass systems (like Figure 7.1.1) involve coupled forces where the movement of one mass affects the other via Hooke's Law.
- Interconnected Tanks: Fluid flow between tanks (Figure 7.1.6) relies on the Conservation of Mass, where the rate of change of salt in Tank 1 depends on the concentration in Tank 2.
- Electrical Circuits: Using constitutive relations $$V = RI, C \frac{dV}{dt} = I, L \frac{dI}{dt} = V$$, we build systems that describe the simultaneous evolution of voltage and current across inductors (L), capacitors (C), and resistors (R).